3b62a04cbe51bccaa420ee387720af571256d432,plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java,CorePlugin,propertyDefinitions,#,335
Before Change
.description("Set to false if sources should not be imported and therefore not available in the Web UI (e.g. for security reasons).")
.type(PropertyType.BOOLEAN)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory(CoreProperties.SUBCATEGORY_SECURITY)
.build(),
PropertyDefinition.builder(CoreProperties.CORE_FORCE_AUTHENTICATION_PROPERTY)
.defaultValue("" + CoreProperties.CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE)
After Change
.description("Set to false if sources should not be imported and therefore not available in the Web UI (e.g. for security reasons).")
.type(PropertyType.BOOLEAN)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.category(CoreProperties.CATEGORY_SECURITY)
.build(),
PropertyDefinition.builder(CoreProperties.CORE_FORCE_AUTHENTICATION_PROPERTY)
.defaultValue("" + CoreProperties.CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE)